SQL中字段内容显示<long text>?

来源:百度知道 编辑:UC知道 时间:2024/05/17 00:38:27
表名是123 ID:77行. rot_int里面是<long text>

我要改long text 里面其中几个文字.语句怎么写? 完整的.谢谢

比方说把 rot_int中的所有 ‘明天’ 改成 ‘后天’

update [123] set [rot_int]=replace([rot_int],'明天','后天') where [ID]=77

说明白点好吗?
我没明白
update 123 set rot_int='XXX' where rot_int='<long text>'
这样?

楼主用什么语言啊?
思路都一样,先读取数据库,显示在客户端,修改文字,再写入数据库,就是不知道用什么语言写?